home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
os2
/
plnk081.zip
/
pilot-link.0.8.1
/
Java
/
Pdapilot
/
RecordID.java
< prev
next >
Wrap
Text File
|
1997-07-22
|
386b
|
31 lines
package Pdapilot;
public class RecordID {
private int value;
public RecordID(int id) {
this.set(id);
}
public RecordID() {
this.set(0);
}
public void set(int id) {
value = id;
}
public int get() {
return value;
}
public boolean equals(RecordID other) {
return (value == other.value);
}
public String toString() {
return "<RecordID "+value+">";
}
}